home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 April / EnigmA AMIGA RUN 06 (1996)(G.R. Edizioni)(IT)[!][issue 1996-04][Skylink CD V].iso / earcd / utilgfx / raylab.lha / RayLab / scenes / demo1.rl < prev    next >
Text File  |  1996-02-16  |  598b  |  21 lines

  1. Globals:
  2.     picwidth 320               # Image dimensions: 320x240
  3.     picheight 240
  4.     backgroundcolor 0 0 0      # Red=0, green=0, blue=0 => black
  5. :end
  6.  
  7. Sphere:
  8.     centre  0 0 2              # Place the sphere in x=0, y=0, z=2
  9.     radius  2                  # ...and it will have a radius of 2 units
  10. :end
  11.  
  12. Light:
  13.     location 3 -8 4            # A light-source at x=3, y=-8, z=4
  14.     color    1 1 1             # Red=1.0, green=1.0, blue=1.0 => white
  15. :end
  16.  
  17. Camera:
  18.     location -1 -9 2           # Place the camera in x=-1, y=-9, z=2
  19.     viewpoint 0 0 2            # Look at x=0, y=0, z=2
  20. :end
  21.